docs: Add .libs directories to BABL_PATHs
authorMartin Nordholts <martinn@src.gnome.org>
Wed, 20 May 2009 20:27:27 +0000 (22:27 +0200)
committerMartin Nordholts <martinn@src.gnome.org>
Wed, 20 May 2009 20:37:43 +0000 (22:37 +0200)
Also add .libs directories to the BABL_PATHs so that e.g. the
BablFishPath introspection chart is properly generated when doing a
build, at least on Linux.

ChangeLog
docs/Makefile.am

index ee922a0c5f9641e886941c11f31484dbb598ccd8..f09c8450c254fe27a9fbe91be45398167930889e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-20  Martin Nordholts  <martinn@svn.gnome.org>
+
+       * docs/Makefile.am: Also add .libs directories to the BABL_PATHs
+       so that e.g. the BablFishPath introspection chart is properly
+       generated when doing a build, at least on Linux.
+
 2009-05-20  Martin Nordholts  <martinn@src.gnome.org>
 
        * docs/index-static.html.in: Convert SVN references to git
index aa617a0d74f5dcbce8251963865c8f0d65b7a31f..6c26d324e447ea87506bb4cfd4eccb53a7698651 100644 (file)
@@ -35,13 +35,13 @@ all: $(HTML_FILES) rss
 BablFishPath.html: $(babl_fish_path_dhtml)
        echo -n "HTML:"
        echo -n " $@"
-       export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\
+       export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $< > $@ &&\
        echo " [OK]" || echo " Fail"
 
 BablFishPath.txt: $(babl_fish_path_fitness)
        echo -n "UTF8:"
        echo -n " $@"
-       export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\
+       export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $< > $@ &&\
        echo " [OK]" || echo " Fail"
        if [ "x"$$CRUCIBLE_ID != "x" ] ;then echo;echo;cat $@;echo;echo;fi
 
@@ -55,7 +55,7 @@ index.html: index-static.html                    \
        echo -n "HTML: $@"
        cp $< $@ 
        (which mktemp > /dev/null 2>&1 && TMPFILE=`mktemp` || TMPFILE="/tmp/babl_build_tempfile" ;\
-       export BABL_PATH="$(top_builddir)/extensions"; $(babl_html_dump) > $$TMPFILE;\
+       export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $(babl_html_dump) > $$TMPFILE;\
        $(SHELL) $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\
        rm -f $$TMPFILE )
        echo -n "."